load required packages

require(readtext)
## Loading required package: readtext
require(LIWCalike)
## Loading required package: LIWCalike
require(quanteda)
## Loading required package: quanteda
## Package version: 2.1.2
## Parallel computing: 2 of 8 threads used.
## See https://quanteda.io for tutorials and examples.
## 
## Attaching package: 'quanteda'
## The following object is masked from 'package:utils':
## 
##     View
require(ggplot2)
## Loading required package: ggplot2
require(quanteda.textplots)
## Loading required package: quanteda.textplots
## 
## Attaching package: 'quanteda.textplots'
## The following objects are masked from 'package:quanteda':
## 
##     as.igraph, as.network, textplot_keyness, textplot_network,
##     textplot_wordcloud, textplot_xray

read in daily corpus

blm_daily <- readtext("~/Dropbox/blm/communitydaily/*")
blm_daily_corpus <- corpus(blm_daily)

load standard liwc dictionary and run on daily corpus

liwcdic <- dictionary(file = "liwcdict.dic")
## note: ignoring parenthetical expressions in lines:
##   [line 77] (53) like*   30
##   [line 80] (could not) like 30  31
##   [line 81] (did not) like   30  31
##   [line 82] (did) like   30  31
##   [line 83] (didn't) like    30  31
##   [line 84] (discrep) like*  31
##   [line 85] (do not) like    30  31
##   [line 86] (do) like    30  31
##   [line 87] (does not) like  30  31
##   [line 88] (does) like  30  31
##   [line 89] (doesn't) like   30  31
##   [line 90] (don't) like 30  31
##   [line 91] (i) like*    20  30  31
##   [line 92] (should not) like    30  31
##   [line 93] (they) like* 20  30  31
##   [line 94] (we) like*   20  30  31
##   [line 95] (will not) like  30  31
##   [line 96] (will) like  30  31
##   [line 97] (won't) like 30  31
##   [line 98] (would not) like 30  31
##   [line 99] (you) like*  20  30  31
output1 <- liwcalike(blm_daily_corpus, liwcdic)
## Warning in nsentence.character(x): nsentence() does not correctly count
## sentences in all lower-cased text
## Warning: 'remove_hyphens' is deprecated, use 'split_hyphens' instead.
write.csv(output1, file = "blm_daily_liwc.csv")

load moral foundations dictionary and run on daily corpus

mftdic <- dictionary(file = "mft.dic")
output2 <- liwcalike(blm_daily_corpus, mftdic)
## Warning in nsentence.character(x): nsentence() does not correctly count
## sentences in all lower-cased text
## Warning: 'remove_hyphens' is deprecated, use 'split_hyphens' instead.
write.csv(output2, file = "blm_daily_mft.csv")
#load morality-as-cooperation dictionary and run on daily corpus
macvirtuedic <- dictionary(file = "macdvirtue.dic")
output3 <- liwcalike(blm_daily_corpus, macvirtuedic)
## Warning in nsentence.character(x): nsentence() does not correctly count
## sentences in all lower-cased text
## Warning: 'remove_hyphens' is deprecated, use 'split_hyphens' instead.
write.csv(output3, file = "blm_daily_macvirtue.csv")

combine these outputs in excel and save as blm_daily_community.csv

Read the liwcalike output back in

data <- read.csv("blm_daily_community.csv")

plot daily time-course, broken down by community, of word counts

ggplot(data, aes(day, WC, colour = community)) + scale_color_manual(values=c("#4daf4a", "#377eb8", "#984ea3", "#e41a1c")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "word count") + geom_smooth(se = TRUE, span = .09) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal")) + scale_y_continuous(labels=function(n){format(n, scientific = FALSE)})
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'

time series for some relevant liwc dictionaries and custom dictionaries

ggplot(data, aes(day, Posemo, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + ylim(c(0, 8)) + labs(x = "day", y = "positive emotion") + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 7 rows containing non-finite values (stat_smooth).
## Warning: Removed 7 rows containing missing values (geom_point).

ggplot(data, aes(day, Anx, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "anxiety") + ylim(c(0, 1)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 11 rows containing non-finite values (stat_smooth).
## Warning: Removed 11 rows containing missing values (geom_point).
## Warning: Removed 13 rows containing missing values (geom_smooth).

ggplot(data, aes(day, Anger, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "anger") + ylim(c(0, 5)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 9 rows containing non-finite values (stat_smooth).
## Warning: Removed 9 rows containing missing values (geom_point).

ggplot(data, aes(day, Sad, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "sadness") + ylim(c(0, 1)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 14 rows containing non-finite values (stat_smooth).
## Warning: Removed 14 rows containing missing values (geom_point).
## Warning: Removed 7 rows containing missing values (geom_smooth).

ggplot(data, aes(day, I, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "first-person singular") + ylim(c(0, 5)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 11 rows containing non-finite values (stat_smooth).
## Warning: Removed 11 rows containing missing values (geom_point).

ggplot(data, aes(day, We, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "first-person plural") + ylim(c(0, 3)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 15 rows containing non-finite values (stat_smooth).
## Warning: Removed 15 rows containing missing values (geom_point).

ggplot(data, aes(day, You, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "second-person") + ylim(c(0, 4.5)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 12 rows containing non-finite values (stat_smooth).
## Warning: Removed 12 rows containing missing values (geom_point).

ggplot(data, aes(day, Percept, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "perception") + ylim(c(0, 10)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 21 rows containing non-finite values (stat_smooth).
## Warning: Removed 21 rows containing missing values (geom_point).

ggplot(data, aes(day, Swear, colour = community)) + scale_color_manual(values=c("green", "blue", "yellow", "red")) + geom_point() + geom_vline(xintercept = 233) + labs(x = "day", y = "swears") + ylim(c(0, 3)) + geom_smooth(se = TRUE, method = loess) + theme(legend.position = c(.3, .97), legend.background = element_rect(fill = "transparent"), legend.title = element_blank()) + guides(color = guide_legend(direction = "horizontal"))
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 6 rows containing non-finite values (stat_smooth).
## Warning: Removed 6 rows containing missing values (geom_point).

read in hashtag corpus, broken down by community. Transform into a corpus, then into a document feature matrix.

hashtagscom <- readtext("~/Dropbox/blm/hashtagsbycommunity/*")
hashtagscom_corpus <- corpus(hashtagscom)
dfmat_hashtagscom <- dfm(hashtagscom_corpus, remove_punct = TRUE)

set random seed, then plot a comparison wordcloud of the four communities

set.seed(100)
textplot_wordcloud(dfmat_hashtagscom, min_size = 1, max_size = 6, min_count = 6, comparison = TRUE, labelsize = .6, labeloffset = 0, random_order = FALSE, rotation = 0.25,color = RColorBrewer::brewer.pal(8, "Dark2"))
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blacklivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## democratsaredestroyingamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## weloveyoublackarmy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blacklivesmaters could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## maga2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## armymatchedforblm could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trump2020nowmorethanever could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trump2020landslide could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## vidaspretasimportam could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## antifaterrorist could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## draintheswamp could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## antifadomesticterrorists could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blexit could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## fakenews could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## lawenforcement could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## daviddorn could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## democrat could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## bluelivesmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## seattleprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## enddemfascism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## endshutdown could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## voteredtosaveamerica2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## voteredtosaveamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## policelivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## pdxprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## walkawayfromdemocrats could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## livepdnation could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## policereformnow could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## abolishthepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## resistance could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## america could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## rayshardbrooks could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## qanons could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wearethenewsnow could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## juneteenth2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## godwins could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## ahmaudarbery could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## policereform could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## patriots could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## biacklivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votetrumpout could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## buildthewall could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforkendrickjohnson could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wwg1wgaworldwide could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforelijahmcclain could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## breonnatalyor could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## racist could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## marxist could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## marxists could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votered could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## alllivesmattter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## greatawakening could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforgeorge could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## domesticterrorists could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackownedbusiness could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## deepstate could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## alllivesmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## democratstheenemywithin could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## nypd could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## cancelculture could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforbreonna could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## socialismkills could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## whitesupremacy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votebluetosaveamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## theresistance could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## chicagoprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## atlantaprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blmterrorist could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## indigenous could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## maddow could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## ćaleovojezatebe could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## chicago could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## morningjoe could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## nycprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## georgesoros could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blacklivematters could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## auspol could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## massincarceration could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## politico could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## atlantaprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforfloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## warondrugs could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## pizzagate could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## terrorists could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## prolife could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## godblessamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## potus could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## atlanta could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## portland could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## backthebadge could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## factsmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## notmypresident could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## systemicracism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## tonymcdade could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## huffpost could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## obama could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## matchedamillion could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## savethechildren could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## marchforourlives could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wapo could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wethepeople could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blmprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## nytimes could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## joebiden could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wakeup could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## voteblue2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## fbrparty could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## endpolicebrutality could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## alllivesmater could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## minneapolis could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## latinx could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## pdxprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## drudge could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## traitortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## military could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## god could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## education could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votebluenomatterwho could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## voteouthate could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## raisethedegreee could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## unitednotdivided could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justice could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## pdx could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforregis could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## voteoutthegop could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## darktolight could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## veteransagainsttrump could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## neonnettle could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## strongertogether could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## racistinchief could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## genx could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## millenials could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wildhorses could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## protest could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## vidasnasfavelasimportam could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## exposeantifa could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## enoughisenough could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## transrightsarehumanrights could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## solidarity could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wwg1gwa could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## democratshateamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## veterans could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## chicagoprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## dailykos could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## covid could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## cannabis could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## georgefloydmurder could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## defundnypd could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## moscowmitch could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## defundspd could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blueline could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## teaparty could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## bospoli could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## nwo could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## liberals could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforbellymujinga could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## nbc could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## cnbc could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## ftp could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## news could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## election2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## climatecrisis could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## medicareforall could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## thehill could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## magarollercoaster could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## washingtondc could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackoutday2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## birthdayforbreonna could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trumpisaracist could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## politics could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## whiteoutwednesday could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blmisadomesticterroristgroup could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trumpdictatorship could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## communism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## cbs could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## marxism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## whiteprivilege could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blacklivesmatterchicago could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## saveblackbusinesses could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## mapoli could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## plannedparenthood could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## breonnatayor could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## communist could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## juneteenthday could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## sorosfundedriots could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## oluwatoyinsalau could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## civilrights could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votebluetoendthisnightmare could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackvotesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## lgbtqlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## doublethemillion could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## breaking could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## onevoice1 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## enationtrains could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## riot2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## humanrights could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## thankyoubts could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## jimcrow could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## thegeorgefloydprotestthread could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackwomenmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## istandwithtuckercarlson could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## seattleautonomouszone could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trumpresignnow could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## transcrowdfund could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## fakenewsmedia could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## comply could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trump2020landslidevictory could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## bluewave2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## armymatch1m could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## rioters could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blacksupremacy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## boycottnfl could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## treason could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## tucker could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## fascisttrump could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## indigenouslivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## millionmaskmarch could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## naacp could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## farmers could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blacklivesmatterplaza could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## defendpdx could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## unitedwestand could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justicefortete could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## independents could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## black could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## themoreyouknow could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## nativelivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justinedamond could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## deputysheriff could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforjayarajandfenix could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## insurrection could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## louisville could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## endracism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## youaintblack could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## vets could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## bbc could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## bunkerboy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## defendpolice could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## notmeus could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## danation could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## donaldtrump could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceinpolicing could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## smartnews could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## victims could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## walkawayfromdemocratsforever could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## daangels could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## riot could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## artistssupportblm could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## liberalhypocrisy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## americaskeepers could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## americans could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## plandemic could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforalgeria could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wtp2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votebymail could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## tampaprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## belgradeprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votedemsout could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## opbluefall could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blacktranscrowdfund could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforahmaudarbery could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## bunkerbaby could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## tampaprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## dearclassof2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## golive could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackhistorymonth could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## breonnataylorwasmurdered could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## kkk could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## icantbreath could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## freeleonardpeltier could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trumpsarmy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## justiceforall could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## minneapolisriots could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## democraticparty could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## fuck12 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## freerealitywinner could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## protest2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## wwg1wga_worldwide could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votebluetosaveamerica2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## usarevolts could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## reparations could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackprivilege could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## womenfortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## demcast could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## qanonworldwide could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## mag could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## voterid could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## saveวัน could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackwomenlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## violencespolicieres could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## hillaryclinton could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## boycottnascar could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## startrekunited could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## dumptrump could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## flipthesenate could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## dontdie could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## digitalsoldiers could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## usaprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## democratsdividinganddestroyingamerica could not be fit on page. It will not be
## plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackliesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## anarchy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## boycottaetv could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## policethepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## stoppolicebrutality could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## latinos could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## ericgarner could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## millennials could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## hannity could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## usariots could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## truthmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## racisminamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## tcot could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## fascism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## demilitarizethepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## noantiblackracism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## podcast could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## racialjustice could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## podsincolor could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## bluefamily could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## pandemic could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## blackowned could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## votered2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## trumpisanationaldisgrace could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## terrorist could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## protests could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## share could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## defundmpd could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## deblasiomustgo could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## atlantapolice could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## dems could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## hypocrisy could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## brooklyn could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## postapocalyptic could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## stfuhillary could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## ap could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## scifi could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## breakingnews could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## antiracism could not be fit on page. It will not be plotted.
## Warning in wordcloud_comparison(x, min_size, max_size, min_count, max_words, :
## nascar could not be fit on page. It will not be plotted.

plot wordclouds for each of the four main communities as well

hashtagscom0 <- readtext("~/Dropbox/blm/hashtagsbycommunity/Activists.txt")
hashtagscom0_corpus <- corpus(hashtagscom0)
dfmat_hashtagscom0 <- dfm(hashtagscom0_corpus, remove_punct = TRUE)
textplot_wordcloud(dfmat_hashtagscom0, min_count = 6, min_size = 1, random_order = FALSE, rotation = 0.25, color = RColorBrewer::brewer.pal(8, "Dark2"))
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackdisabledlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## enoughisenough could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nojusticenopeaceprosecutethepolice could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justicefortonymcdade could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## elijahmcclainwasmurdered could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## emergencycrowdfund could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## peacefulprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## juneteenthday could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## protectblackwomen could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bunkerbabytrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackoutuesday could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgelloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforsandrabland could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforvanessaguillen could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whiteprivilege could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## twitterphilanthropy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforelijah could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforkendrickjohnson could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## supportblackbusiness could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## orlandoprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackvoicesheard could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## womenfortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklgbtqlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nycprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## allcountriesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racisminamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackqueerlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## oromoprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bunkerboydonnie could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpmeltdown could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## kag2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## startrekunitedgives could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policereformnow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackownedbusinesses could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dominiquefells could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## retweet could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackcreatorsfund could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforgeogefloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## drawingwhileblack could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whiteoutwednesday could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackexcellence could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforbreonnatalyor could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fascismhascometoamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## raisethedegreee could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackisbeautiful could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## arrestthecopswhokilledbreonnataylor could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmattteruk could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacktranslivesmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesstillmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ldnblm could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## lavenajohnson could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforandresguardado could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## laprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wearedonedying could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforrayshardbrooks could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmbelgium could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## losangelesprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## breonnataylorskillersarefree could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## vanessaguillen could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackpower could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatteraustralia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## priscillaslater could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## braylastone could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## newprofilepic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjayarajandfenix could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## elseñorjewelry could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## londonprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgesfloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## toyinsalau could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjeyarajandfenix could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thisisamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## elseñorskate could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ahmaudaubrey could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatter757 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackgirlmagic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## iyannadior could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## portlandprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## equality could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## detroit could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## brooklyn could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pvprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bluelinefamily could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## papuanlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## indigenouslivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : nypd
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dcblackout could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policefamily could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## oromorevolution could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## amerikkka could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stoppolicebrutality could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforoluwatoyin could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## anonymousnews could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freewestpapua could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## transgender could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## arrestthecopsthatkilledbreonnataylor could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## betawards could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pridemonth2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## factsmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## unitetofight could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## runskatechill could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## revolution could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## philandocastile could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## signkingvegaz could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## donaldisoverparty could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatterdc could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## epstein could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policethepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## antifaterrorists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## corneliusfredericks could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## junkterrorbillnow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## riahmilton could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : kpop
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## traitortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## laprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## buildthewall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## deputysheriff could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackbusinesses could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blakelivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackhistorymonth could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumptreason could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## matchamillion could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## transisbeautiful could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackbusiness could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackartists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## aboriginallivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dallasprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## darknetflix could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## michaelbrown could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## amycooper could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## armaudarbery could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## kendrickjohnson could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## photography could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpdictatorship could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policereform could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## transrights could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## washingtondc could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantashooting could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## armedforces could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## derekchauvin could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## gofundme could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## transwomenarewomen could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## repost could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## generationadama could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforblacklives could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## brownlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforseanreed could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fvckthefourth could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thinblueline could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmldn could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dictatortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## americaortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## lgbtqia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## america could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## phillyprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dallasprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## allbirthdaysmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforgeorgesfloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boycottstarbucks could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hacaaluuhundeessaa could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackartist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## andresguardado could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freeoromia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpout2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tetegulley could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## breonnataylorbirthday could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## restinpower could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## antifa could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ukprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjamesscurlock could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## mentalhealth could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## elijahmclain could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackartmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## powertothepeople could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## silenceisviolence could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## theshowmustbepaused could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## detroitprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolispolicemurderdhim could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## buyblack could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## detroitwillbreathe could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## saytheirname could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## virginiabeach could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackwomen could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## support could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## abolishprisons could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## adamatraore could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## anomymous could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## regiskorchinskipaquet could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackart could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforbre could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freematthewrushin could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nakiacrawford could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## photoshop could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## happybirthdaybreonnataylor could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackpoundday could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## happypride could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatternyc could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bellymujinga could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atatianajefferson could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sandiego could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## oakland could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopracism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## handsupdontshoot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## donvisuals could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : grind
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fannibals could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 4thofjuly could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racisme could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## phillyprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## abiymustgo could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## black_lives_matters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## weareallinthistogether could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justicefortete could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmlondon could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforandres could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## photoshoot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## alllivesmater could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## amputation could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wearamask could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitelivesmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## podsbyqpoc could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : podqb
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## podsaveamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trypod could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## londonprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklgbtlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## brooklynprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justicefordion could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## lightroom could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## likeforlikes could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## social could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## models could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## entreprenuer could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## portlandprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## arrestbreonnataylorskillers could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## neverforget could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bethechange could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 8cantwait could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## holdlawenforcementaccountable could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitelivematter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## manuelellis could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ericlurry could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolispolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tuesdayvibes could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bostonprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## kansascityprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforshukri could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## phoenixprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sherriffsoffice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## loveislove could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforchristopherkapessa could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## shukriabdi could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boston could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforbreonataylor could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## petitions could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## protectblacklgbtq could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## supportblackpodcasts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## antifaterrorist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## houstonprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policestate could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hiphop could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackpodcast could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## portland could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackhistory could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## jamesscurlock could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjayarajandbennicks could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## btsarmy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sheriffsoffice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackautisticlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiciaparagiovanni could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackphotographer could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## westpapua could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## london could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## prosecutekillercops could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## humanrights could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## lasvegas could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stoppolicebrutalityinnamibia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## richmondprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## philly could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 8toabolition could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : share
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justicepouradamatraore could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## louisville could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## seekjusticeformarcus could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : chop
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thugsinblue could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## exposeantifa could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## washingtondcprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackouttuesdsy could not be fit on page. It will not be plotted.

hashtagscom1 <- readtext("~/Dropbox/blm/hashtagsbycommunity/Democrats.txt")
hashtagscom1_corpus <- corpus(hashtagscom1)
dfmat_hashtagscom1 <- dfm(hashtagscom1_corpus, remove_punct = TRUE)
textplot_wordcloud(dfmat_hashtagscom1, min_count = 6, min_size = 1, random_order = FALSE, rotation = 0.25, color = RColorBrewer::brewer.pal(8, "Dark2"))
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votebluetoendthisnightmare could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thegeorgefloydprotestthread could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatterplaza could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## abolishpolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## independents could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgefloydmurder could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforrobertfuller could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fuckthepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## reparations could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpmeltdown could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stoppolicebrutality could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policethepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votebluetosaveamerica2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantashooting could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pride2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freeleonardpeltier could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopkillingus could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dumptrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## usarevolts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racialjustice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freerealitywinner could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## abolishice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## usaprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## peacefulprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## demilitarizethepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## oregon could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## chicago could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## flipthesenate could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dontdie could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforgeorgeflyod could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## allblacklivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## noantiblackracism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defundmpd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## karensgonewild could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fucktrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpisanationaldisgrace could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitehouse could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wearamask could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## history could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ripgeorgefloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantaprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : blmdc
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolisprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## endracismnow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## socialjustice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## patriot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## denverprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policefreeschools could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## goprussia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## newyork could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## uglypresident could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpvirus could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackoutday2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## barackobama could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## lockhimup could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## change could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bostonprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defendblacklives could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## backtheblue could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thisisamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopmpd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## breonnatayor could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitepeopleneedtolearn could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## robertfuller could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## joebiden2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforbre could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## inequality could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## amycooper could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## derekchauvin could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dictatortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tamirrice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : news
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bostonprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgeflyod could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## closethecamps could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## congress could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wekeepussafe could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## abolishthedeathpenalty could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## seattleautonomouszone could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bluemaga could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racisttrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boston could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## government could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## steamingpileoftrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wearadamnmask could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trump2020jail could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ruleoflaw could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## newyorkcity could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ditchmitch could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defendblacklife could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## equalityforall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpisnotwell could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## election2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## greennewdeal could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## chicagoprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## occupycityhall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trayvonmartin could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolisriot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackhistory could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## generalstrike could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## elijahmcclainwasmurdered could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wethepeople could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ahmaudaubrey could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## reformthepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## enough could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## oakland could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## antiracist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## oklahoma could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## peacefulprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## gopbetrayedamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## amerikkka could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 25thamendmentnow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolispolicemurderdhim could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## brooklynprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bethechange4usa could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boycottfedex could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## translivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 2020protests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumppandemicfailure could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## covid_19 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## climatechange could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dems4usa could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## portlandpolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpout2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## breonnataylorwasmurdered could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## weveseenenough could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tonymcdade could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## washingtondcprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freethemall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defunddcpolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgefloydmemorial could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## worstpresidentever could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bernie2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatteruk could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumprussia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minnesota could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitehouseprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforrayshardbrooks could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatternyc could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## chicagoprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defundthenypd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## washingtondcprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dumptrump2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## donaldtrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## noborderwall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgelloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fuck12 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : qanon
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpisanidiot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## losangelesprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## buildbackbetter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## marijuana could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : amjoy
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantaprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackwomenmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pencewillprayawaythecoronavirus could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nashvilleprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## davidmcatee could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## revolution could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpgenocide could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votejoe could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopracism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitesupremacists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nativeamerican could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## protesters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpliesamericansdie could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackwomen could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tre45on could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## supremeloser could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dcsafe could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## phillyprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 4thofjuly could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## babygate could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## injustice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freepress could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolispolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sixnineteen could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boycottgoya could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## americans could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## equity could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## mustangs could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freedom could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : music
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justice4julius could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## biden2020landslide could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## qualifiedimmunity could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## california could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## teamsters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## brownlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wtpteam could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## repost could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## climateaction could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## manuelellis could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackjoy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## florida could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjavierambler could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nycbudgetjustice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## neverbiden could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## photography could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## endwhitesupremacy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## portlandriots could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stayhome could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## drugwar could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## colinkaepernick could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : ibew
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## animalwelfare could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## colombia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforelijah could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## brooklynprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thinblueline could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjulius could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## policeaccountability could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freepalestine could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## portlandor could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## valdemings could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votersuppression could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## seattleprotestcomms could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## publiclands could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 8cantwait could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bountygate could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : floyd
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## seanreed could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## killercops could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## portlandoregon could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## reparationsnow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## seaofblue could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## asians4blacklives could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## alllivesmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackdisabledlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## gopcowards could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatteratschool could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## onpoli could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## kentucky could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## laprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmnyc could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## philly could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bidenharris2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votebiden2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tulsatrumprally could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitesupremacist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## birthdayforbreonna could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bunkerbabytrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## slavery could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nativeamericans could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 1termtrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : ableg
## could not be fit on page. It will not be plotted.

hashtagscom2 <- readtext("~/Dropbox/blm/hashtagsbycommunity/MAGA.txt")
hashtagscom2_corpus <- corpus(hashtagscom2)
dfmat_hashtagscom2 <- dfm(hashtagscom2_corpus, remove_punct = TRUE)
textplot_wordcloud(dfmat_hashtagscom2, min_count = 6, min_size = 1, random_order = FALSE, rotation = 0.25, color = RColorBrewer::brewer.pal(8, "Dark2"))
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmisadomesticterroristgroup could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## plannedparenthood could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## istandwithtuckercarlson could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trump2020landslidevictory could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## themoreyouknow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolisriot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justinedamond could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defendpolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## black_lives_matter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## liberalhypocrisy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## walkawayfromdemocratsforever could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## plandemic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## americaskeepers could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votedemsout could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantapolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklifematters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## democraticparty could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sayhername could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wwg1wga_worldwide could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hillaryclinton could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackprivilege could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pedogate could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## takeaknee could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## qanonworldwide could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## anarchy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boycottnascar could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## digitalsoldiers could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hannity could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## democratsdividinganddestroyingamerica could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackliesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boycottaetv could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## neverforget could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hypocrisy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## breaking could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## terrorist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## protesters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bluefamily could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stfuhillary could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votered2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## covid_19 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## deblasiomustgo could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## postapocalyptic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tuesdaythoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## looting could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## saveamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racisminamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## patriotsunited could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## anarchists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumprallytulsa could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thriller could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## retweet could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantapd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## followthemoney could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## breakingnews could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : woke
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thursdaythoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## liberal could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## antifascist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thestorm could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## politicalrumble could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## systemicracism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bluecrucible could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## iamthenra could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## cancelyale could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmterroristmarxists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmisracist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumprallies could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justicedemanded could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : white
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## enemyofthepeople could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## clairajanover could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wednesdaywisdom could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## veterans could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hypocrites could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fundthepolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## cdnpoli could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## corruption could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## american could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklives could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## buildthatwall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## terrorism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## liberalismistherealpandemic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## mondaythoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pandemic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## socialism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## patriot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nhpolitics could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## rachelmaddow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racewar could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## kindleunlimited could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumprally could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## abortionismurder could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freedom could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defundplannedparenthood could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sheepnomore could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## qanon2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## neverforgotten could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thesepeoplearesick could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## defunddemocrats could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumptrain could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## silentmajority could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## istandwithtucker could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## chazseattle could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ingrahamangle could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ferguson could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thefive could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 2ndamendment could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## serveandprotect could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## socialist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantashooting could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## republicans could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## murder could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hollywood could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## neverforgetbenghazi could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : texas
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforsecorieaturner could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## florida could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## icantbreath could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## copslivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## susanrosenberg could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackvoicesfortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackouttuesday could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatteraustralia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## e҉x҉p҉o҉s҉e҉a҉n҉t҉i҉f҉a҉ could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## taketheoath could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## communists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## leftists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pedowood could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## jessicadotywhitaker could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : twgrp
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## allpatriotsunite could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## seattleprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## supportpolice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## thestormlsuponus could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## muslimbrotherhood could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## redpill could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## democratsaredomesticterrorists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## supporttheblue could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## prayers could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fourmoreyears could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bringbacklivepd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trump4eva could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## slavery could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## washington could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## freedomvsslavery could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgefloydprotest could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## newyorkcity could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## consciousness could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## marxistblm could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tellthetruth could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : floyd
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : hero
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## irishangel could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## jessicawhitaker could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## patriotsfight could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : amjoy
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacks could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## firstresponders could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bewarethesidesofmarch could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolisprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## allgavesomeandsomegaveall could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## warroompandemic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## inittogether could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## protest2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## donaldtrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## losangeles could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## insurrectionact could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tulsatrumprally could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minnesota could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## saytheirnames could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : facts
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## demsaredestroyingamerica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## democratsaremarxistsdestroyingamerica could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## covidhoax could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nancypelosi could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## benghaziaintgoingaway could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## abortion could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## womenfortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## domesticterrorism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tuckercarlson could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjessica could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## epstein could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votered2020removeeverydemocrat could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgefloydmurder could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacktranslivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatterdc could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacksfortrump could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## newworldorder could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## respect could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : hamas
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## patriotsunite could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumplandslidevictory2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## chopseattle could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justicefordaviddorn could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## kag2020trumpvictory could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sundaythoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopthemadness could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tessamajors could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : eow
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## childrenslivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pedogate2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## mondaymotivation could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## bubbasmollett could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 4moreyears could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## becarefuloutthere could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## mutiny could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## demexit could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## conservative could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## spygate could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## racists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fridayfeeling could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## uniteblue could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## riotsnotprotests could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : jesus
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## coronavirushoax could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hillaryforprison could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## officerdown could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## secorieaturner could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmterrorism could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## leadright could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## venezuela could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## saturdaythoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fridaythoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## juneteenth2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackoutday2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## constitution could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## unbornlivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## vallejo could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## clinton could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## covidiots could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## virginia could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## vallejoca could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wearetouro could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## mareisland could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## tourocollege could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## visitvallejo could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## agbarr could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## nokneeling could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : lgbtq
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## vallejopd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## atlantariot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## kag2020landslidevictory could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stlouis could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitelivesmatters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## lennarhomes could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## antifas could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fakepandemic could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whiteguilt could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackpanthers could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## lennarbayarea could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hatecrime could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 2ashallnotbeinfringed could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## veteransoverillegals could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopkillingus could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fallenhero could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 4thofjuly could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## domesticterrorist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sundayvibes could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## globalist could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blmmarxists could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## violence could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : evil
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fallenheros could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trump2020victorynowmorethanever could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## pedogateisreal could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## votetrump2020 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## wednesdaythoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, : share
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## looters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## neverforgetbenghazhi could not be fit on page. It will not be plotted.

hashtagscom3 <- readtext("~/Dropbox/blm/hashtagsbycommunity/K-Pop.txt")
hashtagscom3_corpus <- corpus(hashtagscom3)
dfmat_hashtagscom3 <- dfm(hashtagscom3_corpus, remove_punct = TRUE)
textplot_wordcloud(dfmat_hashtagscom3, min_count = 6, min_size = 1, random_order = FALSE, rotation = 0.25, color = RColorBrewer::brewer.pal(8, "Dark2"))
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopexecutionofiranianprotestors could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## minneapolisriot could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## matchamilliom could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforgeogefloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## donaldisoverparty could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjeyarajandfenix could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackoutuesday could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## southernkadunamassacre could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## spreadlove could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## dadthisisforyou could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## black_live_matters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justicaparajoaopedro could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 2020btsfesta could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmatteritaly could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## georgesfloyd could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## yoongiweloveyou could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## fakepresident could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## sheriffsoffice could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## southernkadunagenocide could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stopthekillingsinsouthernkaduna could not be fit on page. It will not be
## plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforkingbrown could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## yemenilivesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforjayarajandbennicks could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## elijahmcclainwasmurdered could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ยกเลิก112 could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## boycottshakeshack could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiceforblacklives could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivemattters could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## calminkirkland could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## theshowmustbepaused could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## trumpdictatorship could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## joaopedropresente could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## raisethecharge could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## needtoknow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## breonataylor could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## aleksandarvučić could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklivesmetter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacktwitter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## btssupportsblackarmy could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## junkterrorbillnow could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## justiciaparagiovanni could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## endviolence could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blackwomenmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## 9forgeorge could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## blacklifesmatter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## stillwithyou could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## whitelifematter could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## ahmaudarbery could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## hadenough could not be fit on page. It will not be plotted.
## Warning in wordcloud(x, min_size, max_size, min_count, max_words, color, :
## anonymuos could not be fit on page. It will not be plotted.

Read in hashtag adjacency matrix. Break into four objects based on community membership.

data0 <- read.csv("hashemo-EXPERIMENTAL-COMM0-adjmatrix-top50.csv")
data1 <- read.csv("hashemo-EXPERIMENTAL-COMM1-adjmatrix-top50.csv")
data2 <- read.csv("hashemo-EXPERIMENTAL-COMM2-adjmatrix-top50.csv")
data3 <- read.csv("hashemo-EXPERIMENTAL-COMM3-adjmatrix-top50.csv")

Remove unwanted columns

data0$TW_ID <- NULL
data0$community <- NULL
data0$subcommunity <- NULL
data0$date <- NULL
data1$TW_ID <- NULL
data1$community <- NULL
data1$subcommunity <- NULL
data1$date <- NULL
data2$TW_ID <- NULL
data2$community <- NULL
data2$subcommunity <- NULL
data2$date <- NULL
data3$TW_ID <- NULL
data3$community <- NULL
data3$subcommunity <- NULL
data3$date <- NULL

Re-order each data object so that columns are in decreasing order by sum. This puts the most common emoji first and lets you work only with them.

data0 <- data0[, order(colSums(-data0))]
data0 <- data0[,1:99]
data1 <- data1[, order(colSums(-data1))]
data1 <- data1[,1:100]
data2 <- data2[, order(colSums(-data2))]
data2 <- data2[,1:99]
data3 <- data3[, order(colSums(-data3))]
data3 <- data3[,1:100]

transform each data object into a matrix. Construct the transpose of each matrix. Multiple each matrix by its transpose. Then write the output to a csv file for visualization in Gephi.

M0 <- data.matrix(data0)
T0 <- t(M0)
adjacency0 <- (T0 %*% M0)
write.csv(adjacency0, file="blmhashtagemojiadjacency0.csv")
M1 <- data.matrix(data1)
T1 <- t(M1)
adjacency1 <- (T1 %*% M1)
write.csv(adjacency1, file="blmhashtagemojiadjacency1.csv")
M2 <- data.matrix(data2)
T2 <- t(M2)
adjacency2 <- (T2 %*% M2)
write.csv(adjacency2, file="blmhashtagemojiadjacency2.csv")
M3 <- data.matrix(data3)
T3 <- t(M3)
adjacency3 <- (T3 %*% M3)
write.csv(adjacency3, file="blmhashtagemojiadjacency3.csv")